[1] "/__w/DataVisMaterial/DataVisMaterial/material/slides/vis_slides"
This is a Quarto slide!
[1] "/__w/DataVisMaterial/DataVisMaterial/material/slides/vis_slides"
Hello from Jupyter!
# Importing the packages
import plotly.express as px
import pandas as pd
# Loading and displaying the data
tableRes = pd.read_csv('../../data/exergamewf.csv')
tableRes["Participants"] = "Participants" # in order to have a single root node
tableRes["ppt"] = tableRes["iSubj"].astype(str)
tableRes["strial"] = tableRes["trial"].astype(str)
tableRes.head() iSubj trial Age Decade ... older Participants ppt strial
0 1 1 76 7 ... True Participants 1 1
1 1 2 76 7 ... True Participants 1 2
2 1 3 76 7 ... True Participants 1 3
3 1 4 76 7 ... True Participants 1 4
4 1 5 76 7 ... True Participants 1 5
[5 rows x 19 columns]